Hacker News new | ask | show | jobs
by rullopat 438 days ago
Great! Are you also deploying DB servers or any other kind of additional servers that are dependencies of those webapps?
1 comments

Yes, I am deploying mysql with ghost

``` accessories:

  db:
    image: mysql:8.0
    host: 170.64.156.161
    env:
      secret:
        - MYSQL_ROOT_PASSWORD
    options:
      restart: always
    directories:
      - data:/var/lib/mysql
```

For my other services I am just using sqlite combined with a volume for persistence (managed by kamal)