local dev upgrades

This commit is contained in:
Jim Moffet
2022-06-13 14:26:46 -07:00
parent 543be77776
commit 2b727e13b4
10 changed files with 179 additions and 17 deletions

View File

@@ -0,0 +1,25 @@
version: '3'
services:
admin:
container_name: admin
image: notification-admin
env_file: .env
build:
context: .
dockerfile: devcontainer-admin/Dockerfile
command: sleep infinity
volumes:
- .:/workspace:cached
ports:
- "6012:6012"
expose:
- "6012"
adminredis:
container_name: adminredis
image: redis:latest
networks:
default:
name: notify-network
external: true