diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2024-01-29 16:32:38 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2024-01-29 16:32:38 +0300 |
commit | 87f854bb151d314d21237a67d92d31e2ddac152a (patch) | |
tree | ef42a1887133b43bb1f21997281380c7526607af /docker-compose.yml | |
parent | a9eb0eb37d2cbdffb5381594a9b99ad14896c522 (diff) |
Docker update
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index dae7f88..728c420 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,17 +1,13 @@ version: '3' services: - my-darling: - image: gitea.cebotari.ru/chebser/mydarling-dotnet:latest + my-darling-test: + build: . container_name: mydarling-dotnet ports: - - "5050:5000" + - "5000:5000" volumes: - - db:/app/Database - - content:/app/wwwroot/Content + - ./Database:/app/Database + - ./wwwroot/Content:/app/wwwroot/Content environment: - - ADMIN_PASSWORD=He110World! - -volumes: - db: - content:
\ No newline at end of file + - ADMIN_PASSWORD=He110World!
\ No newline at end of file |