Browse Source

Correct earlier error with superuser envs

Erroneusly removed superuser envs from misago rather than celery earlier
Restored them to misago and removed them from Celery
Ali 6 years ago
parent
commit
ba15202941
1 changed files with 4 additions and 4 deletions
  1. 4 4
      docker-compose.yaml

+ 4 - 4
docker-compose.yaml

@@ -22,6 +22,10 @@ services:
       - POSTGRES_DB=misago
       - POSTGRES_HOST=postgres
       - POSTGRES_TEST_DB=misago_test
+      # Superuser
+      - SUPERUSER_USERNAME=Admin
+      - SUPERUSER_EMAIL=admin@example.com
+      - SUPERUSER_PASSWORD=password
     ports:
       # Map port 8000 in the container to port 8000 on the host
       # This way we can access the forum through http://localhost:8000
@@ -44,10 +48,6 @@ services:
       - POSTGRES_DB=misago
       - POSTGRES_HOST=postgres
       - POSTGRES_TEST_DB=misago_test
-      # Superuser
-      - SUPERUSER_USERNAME=Admin
-      - SUPERUSER_EMAIL=admin@example.com
-      - SUPERUSER_PASSWORD=password
     ports:
       # Map port 8000 in the container to port 8000 on the host
       # This way we can access the forum through http://localhost:8000