[DevOps] Deploy VueJS (NuxtJS) in Ubuntu Server Using Docker

Опубликовано: 31 Октябрь 2024
на канале: rodentskie
1,755
19

Good day, we will be deploying our basic Nuxt JS app in our ubuntu server bought in digital ocean through docker.

REPO: https://github.com/rodentskie/app_cle...

--

docker-compose.yml

version: '3'
services:
app:
build:
context: ./app_clean_architecture
dockerfile: Dockerfile
container_name: app_clean
restart: unless-stopped
volumes:
./app_clean_architecture:/usr/src/app
app_clean_architecture_node_modules:/usr/src/app/node_modules
ports:
7033:80
volumes:
app_clean_architecture_node_modules:

#docker #nginx #ubuntu