Skip to content

Commit

Permalink
Merge pull request #181 from AndrewCS149/testWorkflow
Browse files Browse the repository at this point in the history
testWorkflow
  • Loading branch information
The-DevBlog authored Apr 19, 2024
2 parents 70510fd + adaf6ca commit e8e958d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
services:
proxy:
image: proxy
image: ${PROXY_CONTAINER_NAME}
build: ./proxy
container_name: proxy
container_name: ${PROXY_CONTAINER_NAME}
depends_on:
- devblog_client
volumes:
- /home/devmaster/app/proxy/default.conf:/etc/nginx/conf.d/default.conf
- /etc/ssl/certs/${DEVBLOG_CERT_NAME}:/etc/ssl/certs/${DEVBLOG_CERT_NAME}
- ${PROXY_CONFIG_VOLUME}
- ${CLIENT_SSL_VOLUME}
restart: on-failure
ports:
- 443:443
- ${SSL_PORTS}

devblog_client:
image: ${DEVBLOG_CONTAINER_NAME}
build: ./client
container_name: ${DEVBLOG_CONTAINER_NAME}
restart: on-failure
volumes:
- ./client/dist:/app
- ./client/nginx.conf:/etc/nginx/nginx.conf
- /etc/ssl/certs/${DEVBLOG_CERT_NAME}:/etc/ssl/certs/${DEVBLOG_CERT_NAME}
- ${CLIENT_WASM_VOLUME}
- ${CLIENT_CONFIG_VOLUME}
- ${CLIENT_SSL_VOLUME}
ports:
- 8082:443
- ${CLIENT_PORTS}

0 comments on commit e8e958d

Please sign in to comment.