diff options
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 250309e..1793945 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,9 +3,15 @@ version: '3' services: my-darling: build: . - container_name: mydarling-net + container_name: mydarling-dotnet ports: - "5050:5000" volumes: - - ./Database:/app/Database - - ./wwwroot/content:/app/wwwroot/content
\ No newline at end of file + - db:/app/Database + - content:/app/wwwroot/content + environment: + - ADMIN_PASSWORD=He110World! + +volumes: + db: + content:
\ No newline at end of file |