First official commit
This commit is contained in:
16
docker-compose.yml
Normal file
16
docker-compose.yml
Normal file
@@ -0,0 +1,16 @@
|
||||
version: "3.9"
|
||||
|
||||
services:
|
||||
nginx:
|
||||
image: nginx:latest
|
||||
ports:
|
||||
- "3000:80"
|
||||
volumes:
|
||||
- ./nginx.conf:/etc/nginx/nginx.conf:ro
|
||||
depends_on:
|
||||
- frontend
|
||||
restart: always
|
||||
|
||||
frontend:
|
||||
image: git.aranroig.com/syndria98/vault-${VAULT_NAME}:latest
|
||||
restart: always
|
||||
Reference in New Issue
Block a user