32 lines
1.1 KiB
YAML
32 lines
1.1 KiB
YAML
# this compose file runs Postgres db and exposes it's port to the host machine
|
|
version: "3.7"
|
|
|
|
services:
|
|
web-app:
|
|
image: utility-bills-tracker:1.0.0
|
|
ports:
|
|
- 3000:3000
|
|
environment:
|
|
MONGODB_URI: mongodb://root:example@mongo:27017/
|
|
GOOGLE_ID: 355397364527-adjrokm6hromcaaar0qfhk050mfr35ou.apps.googleusercontent.com
|
|
GOOGLE_SECRET: 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
|
|
AUTH_SECRET: Gh0jQ35oq6DR8HkLR3heA8EaEDtxYN/xkP6blvukZ0w=
|
|
HOSTNAME: ${HOSTNAME:-0.0.0.0} # IP address at which the server will be listening (0.0.0.0 = listen on all addresses)
|
|
NEXTAUTH_URL: ${NEXTAUTH_URL:-http://localhost:3000} # URL next-auth will use while redirecting user during authentication (if not set - will use HOSTNAME)
|
|
mongo:
|
|
image: mongo:6.0.12
|
|
environment:
|
|
MONGO_INITDB_ROOT_USERNAME: root
|
|
MONGO_INITDB_ROOT_PASSWORD: example
|
|
volumes:
|
|
- ./mongo:/data/db
|
|
mongo-express:
|
|
image: mongo-express
|
|
ports:
|
|
- 8081:8081
|
|
environment:
|
|
ME_CONFIG_MONGODB_ADMINUSERNAME: root
|
|
ME_CONFIG_MONGODB_ADMINPASSWORD: example
|
|
ME_CONFIG_MONGODB_URL: mongodb://root:example@mongo:27017/
|
|
|