├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── .expo-shared │ └── assets.json ├── .gitignore ├── App.js ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── package-lock.json └── package.json └── docker-compose.yml /.dockerignore: -------------------------------------------------------------------------------- 1 | app/node_modules 2 | app/package-lock.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .devcontainer -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taher07/dockerized-react-native/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taher07/dockerized-react-native/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taher07/dockerized-react-native/HEAD/README.md -------------------------------------------------------------------------------- /app/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taher07/dockerized-react-native/HEAD/app/.expo-shared/assets.json -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taher07/dockerized-react-native/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taher07/dockerized-react-native/HEAD/app/App.js -------------------------------------------------------------------------------- /app/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taher07/dockerized-react-native/HEAD/app/app.json -------------------------------------------------------------------------------- /app/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taher07/dockerized-react-native/HEAD/app/assets/adaptive-icon.png -------------------------------------------------------------------------------- /app/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taher07/dockerized-react-native/HEAD/app/assets/favicon.png -------------------------------------------------------------------------------- /app/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taher07/dockerized-react-native/HEAD/app/assets/icon.png -------------------------------------------------------------------------------- /app/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taher07/dockerized-react-native/HEAD/app/assets/splash.png -------------------------------------------------------------------------------- /app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taher07/dockerized-react-native/HEAD/app/babel.config.js -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taher07/dockerized-react-native/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taher07/dockerized-react-native/HEAD/app/package.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taher07/dockerized-react-native/HEAD/docker-compose.yml --------------------------------------------------------------------------------