We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 134d648 commit f81c9ccCopy full SHA for f81c9cc
1 file changed
docker-compose.prod-ci.yml
@@ -2,6 +2,7 @@ version: '3.9'
2
3
services:
4
web:
5
+ container_name: skills_web
6
image: ghcr.io/procollab-github/skills_api:latest
7
restart: always
8
env_file:
@@ -12,13 +13,15 @@ services:
12
13
- 8000
14
15
nginx:
16
+ container_name: skills_nginx
17
build: ./nginx
18
depends_on:
19
- web
20
ports:
21
- 8001:80
22
23
redis:
24
+ container_name: skills_redis
25
image: redis:latest
26
expose:
27
- 6379
0 commit comments