You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
405 B
25 lines
405 B
version: "3.3" |
|
|
|
services: |
|
redis: |
|
image: redis:6.2.5 |
|
restart: always |
|
ports: |
|
- "127.0.0.1:6380:6379" |
|
|
|
postgres: |
|
image: postgres:14.1 |
|
restart: always |
|
env_file: ".env" |
|
ports: |
|
- "127.0.0.1:5432:5432" |
|
volumes: |
|
- ./data:/var/lib/postgresql/data |
|
|
|
muskrat: |
|
build: . |
|
restart: always |
|
env_file: ".env" |
|
depends_on: |
|
- redis |
|
- postgres
|
|
|