Fix a bunch of stuff. Add docker compose files to make server config repo obsolete
This commit is contained in:
20
configs/docker/compose_files/excalidraw/docker-compose.yml
Normal file
20
configs/docker/compose_files/excalidraw/docker-compose.yml
Normal file
@ -0,0 +1,20 @@
|
||||
version: '3'
|
||||
services:
|
||||
excalidraw:
|
||||
image: excalidraw/excalidraw:latest
|
||||
container_name: excalidraw
|
||||
hostname: excalidraw.gib
|
||||
domainname: draw.${DOMAIN}
|
||||
networks:
|
||||
${NETWORK_NAME}:
|
||||
ipv4_address: ${IP_PREFIX}.30
|
||||
ports:
|
||||
- 80:80
|
||||
env_file:
|
||||
- ../user_variables.env
|
||||
tty: true
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
${NETWORK_NAME}:
|
||||
external: true
|
Reference in New Issue
Block a user