mirror of
https://github.com/standardnotes/app
synced 2026-01-16 19:04:58 -05:00
23 lines
344 B
YAML
23 lines
344 B
YAML
version: '3.8'
|
|
services:
|
|
app:
|
|
build: .
|
|
command: start-local
|
|
env_file: .env
|
|
restart: unless-stopped
|
|
ports:
|
|
- ${PORT}:3001
|
|
volumes:
|
|
- .:/app
|
|
networks:
|
|
standardnotes_proxy:
|
|
aliases:
|
|
- web
|
|
web: {}
|
|
|
|
networks:
|
|
web:
|
|
name: web
|
|
standardnotes_proxy:
|
|
name: standardnotes
|